Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
A DMN FEEL parser and interpreter written in JavaScript. :arrow_right: Try it out.
import {
unaryTest,
evaluate
} from 'feelin';
unaryTest('1', { '?': 1 }); // true
unaryTest('[1..end]', { '?': 1, end: 10 }); // true
evaluate("Mike's daughter.name", {
'Mike\'s daughter.name': 'Lisa'
}); // "Lisa"
evaluate('for a in [1, 2, 3] return a * 2'); // [ 2, 4, 6 ]
evaluate('every rate in rates() satisfies rate < 10', {
rates() {
return [ 10, 20 ];
}
}); // false
# build the library and run all tests
npm run all
# spin up for local development
npm run dev
# execute FEEL tests in DMN TCK
npm run tck
MIT
3.2.0
FEAT
: support passing parser dialect (#86)DEPS
: update to lezer-feel@1.4.0
FAQs
A FEEL parser and interpreter
The npm package feelin receives a total of 15,725 weekly downloads. As such, feelin popularity was classified as popular.
We found that feelin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.